home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hydra_ssh2.nasl < prev    next >
Text File  |  2005-03-31  |  4KB  |  105 lines

  1. #TRUSTED 80e18b4f859e86b8d08f31bac205efef169ce4d0bfade6ca9aecd2d439f2892809ef53213fd6e726a561deff832ac7f721b089166b9bfb8c458b9425c5fdeacc92de7dcd9c52a6f49efc6d633218d51e6f07aed5ecb9d39da937e65af7326217c672e09e95493a896342b89c14cd755a10114d17f93df8326ea673ce081a61e1339224e75ff34f2b4d1d4478dcd4b00629b3f54e1963e4b7142d95324e0bcfaf828b7d8e9ab937547dd9635a330c564f21dd8c16b484ace953bd3b090a887f4461c522f5d638369a05a91396e947903ec3eec33c941ae0211dcd6dd6f139288c1944556b6fced7c59fc1a8523e4abfb1e2b7663f63d0448b83d9e2c5d98afcd4261bcae0b58d6491af51e037852e7b6add5389be6ed17abad885169689f80e8eb0e7076d99c4140f0b882f61ff39a56c18b4a39bb3ac1c03467afcd44697c1ad18575bc211e0ed1b132a1ffbde260ed9ea121f10470726333724cbc363afe978d2c395dc124364b5ad1d22a57088bfc68361d2633512b1e144ed2cbdb1b165941cef32153ddd95e6d89d99690832e912a9b44ef85f235128c185d77e04946a04861b9ad27936e4d08d8ea756a6b1080d3d04b9094fe0623874f8d0c00f81cac26926c69d79eba62569bd22aad28f3161d4a2d804ecf041788bd34d08c19f5705d9a878aff0deafb24be67ca5100e49c3e40def0efaa432bb89f098a0085bb49f
  2. #
  3. # This script was written by Michel Arboi <arboi@alussinan.org>
  4. #
  5. # GPL
  6. #
  7.  
  8. if (! defined_func("script_get_preference_file_location")) exit(0);
  9. if (! find_in_path("hydra")) exit(0);
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(15888);
  15.  script_version ("1.1");
  16.  name["english"] = "Hydra: SSH2";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This plugin runs Hydra to find SSH2 accounts & passwords by brute force.
  21.  
  22. See the section 'plugins options' to configure it
  23. ";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Brute force SSH2 authentication with Hydra";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_ATTACK);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  33.  script_family(english:"Brute force attacks");
  34.  script_require_keys("Secret/hydra/logins_file", "Secret/hydra/passwords_file");
  35.  script_require_ports("Services/ssh", 22);
  36.  script_dependencies("hydra_options.nasl", "find_service.nes", "doublecheck_std_services.nasl");
  37.  exit(0);
  38. }
  39.  
  40. #
  41. thorough = get_kb_item("global_settings/thorough_tests");
  42. if ("yes" >!< thorough) exit(0);
  43. logins = get_kb_item("Secret/hydra/logins_file");
  44. passwd = get_kb_item("Secret/hydra/passwords_file");
  45. if (logins == NULL || passwd == NULL) exit(0);
  46.  
  47. port = get_kb_item("Services/ssh");
  48. if (! port) port = 22;
  49. if (! get_port_state(port)) exit(0);
  50.  
  51. timeout = get_kb_item("/tmp/hydra/timeout"); timeout = int(timeout);
  52. tasks = get_kb_item("/tmp/hydra/tasks"); task = int(tasks);
  53.  
  54. empty = get_kb_item("/tmp/hydra/empty_password");
  55. login_pass = get_kb_item("/tmp/hydra/login_password");
  56. exit_asap = get_kb_item("/tmp/hydra/exit_ASAP");
  57. tr = get_kb_item("Transports/TCP/"+port);
  58.  
  59. i = 0;
  60. argv[i++] = "hydra";
  61. argv[i++] = "-s"; argv[i++] = port;
  62. argv[i++] = "-L"; argv[i++] = logins;
  63. argv[i++] = "-P"; argv[i++] = passwd;
  64. s = "";
  65. if (empty) s = "n";
  66. if (login_pass) s+= "s";
  67. if (s)
  68. {
  69.   argv[i++] = "-e"; argv[i++] = s;
  70. }
  71. if (exit_asap) argv[i++] = "-f";
  72. if (tr >= ENCAPS_SSLv2) argv[i++] = "-S";
  73.  
  74. if (timeout > 0)
  75. {
  76.   argv[i++] = "-w";
  77.   argv[i++] = timeout;
  78. }
  79. if (tasks > 0)
  80. {
  81.   argv[i++] = "-t";
  82.   argv[i++] = tasks;
  83. }
  84.  
  85. argv[i++] = get_host_ip();
  86. argv[i++] = "ssh2";
  87.  
  88. report = "";
  89. results = pread(cmd: "hydra", argv: argv, nice: 5);
  90. foreach line (split(results))
  91. {
  92.   v = eregmatch(string: line, pattern: 'host:.*login: *(.*) password: *(.*)$');
  93.   if (! isnull(v))
  94.   {
  95.     l = chomp(v[1]);
  96.     p = chomp(v[2]);
  97.     report = strcat(report, 'username: ', l, '\tpassword: ', p, '\n');
  98.     set_kb_item(name: 'Hydra/ssh2/'+port, value: l + '\t' + p);
  99.   }
  100. }
  101.  
  102. if (report)
  103.   security_hole(port: port, 
  104.     data: 'Hydra was able to break the following SSH accounts:\n' + report);
  105.